View Javadoc
1 /* 2 QueryJ 3 4 Copyright (C) 2002 Jose San Leandro Armend?riz 5 jsanleandro@yahoo.es 6 chousz@yahoo.com 7 8 This library is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public 10 License as published by the Free Software Foundation; either 11 version 2.1 of the License, or (at your option) any later version. 12 13 This library is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 General Public License for more details. 17 18 You should have received a copy of the GNU General Public 19 License along with this library; if not, write to the Free Software 20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 22 Thanks to ACM S.L. for distributing this library under the GPL license. 23 Contact info: jsanleandro@yahoo.es 24 Postal Address: c/Playa de Lagoa, 1 25 Urb. Valdecaba?as 26 Boadilla del monte 27 28660 Madrid 28 Spain 29 30 ****************************************************************************** 31 * 32 * Filename: $RCSfile: QueryJSuite.java,v $ 33 * 34 * Author: Jose San Leandro Armend?riz 35 * 36 * Description: Is a collection of related JUnit tests for the base QueryJ 37 * classes. 38 * 39 * Last modified by: $Author: chous $ at $Date: 2003/08/29 08:15:02 $ 40 * 41 * File version: $Revision: 1.1 $ 42 * 43 * Project version: $Name: $ 44 * 45 * $Id: QueryJSuite.java,v 1.1 2003/08/29 08:15:02 chous Exp $ 46 * 47 */ 48 package unittests.org.acmsl.queryj; 49 50 /* 51 * Importing ACM-SL classes. 52 */ 53 import unittests.org.acmsl.queryj.SelectQueryTest; 54 55 /* 56 * Importing JUnit classes 57 */ 58 import junit.framework.Test; 59 import junit.framework.TestSuite; 60 import junit.swingui.TestRunner; 61 62 /*** 63 * Is a collection of related JUnit tests for the base QueryJ classes. 64 * @testfamily JUnit 65 * @testkind testsuite 66 * @testsetup Default TestSuite 67 * @testpackage org.acmsl.queryj 68 * @author <a href="mailto:jsanleandro@yahoo.es" 69 >Jose San Leandro Armendariz</a> 70 * @version $Revision: 1.1 $ 71 */ 72 public class QueryJSuite 73 extends TestSuite 74 { 75 /*** 76 * Default constructor. 77 */ 78 public QueryJSuite() 79 { 80 addTest(suite()); 81 } 82 83 /*** 84 * Executes the tests from command line. 85 * @param args the command-line arguments. Not needed so far. 86 */ 87 public static void main(String[] args) 88 { 89 TestRunner.run(QueryJSuite.class); 90 } 91 92 /*** 93 * Retrieves the set of tests included in this suite. 94 * @return the test collection. 95 */ 96 public static Test suite() 97 { 98 TestSuite result = new TestSuite("QueryJ suite"); 99 100 result.addTestSuite(SelectQueryTest.class); 101 102 return result; 103 } 104 }

This page was automatically generated by Maven